home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: The Risc OS Music Utilities CD / Acorn User: The Risc OS Music Utilities CD.iso / RISCSTER / RISCSRC3.ZIP / h / dns next >
Encoding:
Text File  |  2000-06-20  |  248 b   |  14 lines

  1. #define Resolver_GetHost 0x46001
  2.  
  3. #include <stdlib.h>
  4. #include <stdio.h>
  5.  
  6. #include "netinet/in.h"
  7. #include "kernel.h"
  8. #include "netdb.h"
  9. #include "arpa/inet.h"
  10. #include "errno.h"
  11.  
  12. int dns_find_ip_address(const char *hostname, struct in_addr *ip);
  13.  
  14.